home *** CD-ROM | disk | FTP | other *** search
- /*
- ### draw a cross ###
- */
-
- #include <suntool/sunview.h>
-
- cross(pw,xp,yp,s,color,p_type)
- Pixwin *pw;
- int xp,yp,s,color,p_type;
- {
-
- if(p_type==0){
- pw_vector(pw,xp-s,yp,xp+s,yp,PIX_SRC | PIX_COLOR(color),1);
- pw_vector(pw,xp,yp-s,xp,yp+s,PIX_SRC | PIX_COLOR(color),1);
- }
- else {
- pw_vector(pw,xp-s,yp,xp+s,yp,(PIX_SRC ^ PIX_DST)| PIX_COLOR(color),1);
- pw_vector(pw,xp,yp-s,xp,yp+s,(PIX_SRC ^ PIX_DST)| PIX_COLOR(color),1);
- }
- }
-
-